home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / tr.dir / 00237_EnterButton.ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  587 b   |  23 lines

  1. on mouseUp
  2.   global gTREndGame, gTRButtInhibit
  3.   set vMouse to point(the mouseH, the mouseV)
  4.   set vHotSpot to rect(400, 255, 500, 287)
  5.   if inside(vMouse, vHotSpot) then
  6.     set gTRButtInhibit to 1
  7.   end if
  8.   set the castNum of sprite 47 to the number of cast "EnterButton"
  9.   updateStage()
  10.   if the mouseCast = the number of cast "EnterButton" then
  11.     if TestNameLength() then
  12.       EnterNewChamps()
  13.       MakeChampList()
  14.       set the visible of sprite 45 to 0
  15.       if not gTREndGame then
  16.         StartNewGame()
  17.       else
  18.         go("StopGame")
  19.       end if
  20.     end if
  21.   end if
  22. end
  23.